home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / EDU / DISK3149.ZIP / INSTALL.OVL < prev    next >
Text File  |  1992-08-17  |  713b  |  29 lines

  1. echo off
  2. if "%1"=="" goto bad
  3. cls
  4. echo Beginning installation from Drive %1. Please wait . . .
  5. :disk1
  6. if not exist %1:sla10.001 goto disk1
  7. echo Copying DISK1 . . .
  8. copy %1:sla10.001
  9. :disk2
  10. echo Please insert Disk 2 in Drive %1
  11. pause
  12. if not exist %1:sla10.002 goto disk2
  13. echo Copying DISK2 . . .
  14. copy %1:sla10.002
  15. cls
  16. echo Reconstructing archive for installation . . .
  17. copy /b sla10.001+sla10.002 sla10.exe
  18. del sla10.0*
  19. rem next line runs the self-extracting archive
  20. sla10
  21. del sla10.exe
  22. echo Installation completed.  You may ignore the error message,
  23. echo if any, appearing on the next line.
  24. del install2.bat > nul
  25. goto exit
  26. :bad
  27. echo Could not install: no source drive specified
  28. :exit
  29.